home *** CD-ROM | disk | FTP | other *** search
- global fSep
-
- on checkMainRollover
- global gLastRolledOn, gLastRolledCast
- repeat with i = 6 to 12
- if rollOver(i) = 1 then
- if gLastRolledOn = (i - 5) then
- exit
- end if
- if gLastRolledOn <> 0 then
- if i <> 6 then
- resetDoor()
- end if
- set the castNum of sprite 13 to the number of cast "nullCast"
- end if
- set the castNum of sprite 13 to the number of cast ("MainHL" & string(i - 5))
- updateStage()
- set gLastRolledOn to i - 5
- exit
- end if
- end repeat
- if gLastRolledOn = 0 then
- exit
- end if
- resetDoor()
- set the castNum of sprite 13 to the number of cast "nullCast"
- updateStage()
- set gLastRolledOn to 0
- end
-
- on SetUpRollover1
- puppetSprite(13, 1)
- set the stretch of sprite 13 to 0
- repeat with x = 1 to 6
- preLoadCast("MainHL" & string(x))
- end repeat
- end
-
- on resetDoor
- global gLastRolledOn, gLastRolledCast
- if the name of cast the castNum of sprite 13 = "door open" then
- set the castNum of sprite 13 to the number of cast "door closed"
- sound stop 1
- set lName to the pathName & "SNDTRACK" & fSep & "LEAVE.AIF"
- sound playFile 1, lName
- puppetTransition(1, 2, 3, 1)
- updateStage()
- end if
- end
-
- on DoorClick
- global gLastRolledOn, gLastRolledCast
- set gLastRolledOn to 1
- if the name of cast the castNum of sprite 13 = "door closed" then
- set the castNum of sprite 13 to the number of cast "MainHL1"
- updateStage()
- set the castNum of sprite 13 to the number of cast "door open"
- puppetTransition(2, 2, 3, 1)
- sound stop 1
- set lName to the pathName & "SNDTRACK" & fSep & "ARRIVE.AIF"
- sound playFile 1, lName
- exit
- else
- if the name of cast the castNum of sprite 13 = "MainHL1" then
- updateStage()
- set the castNum of sprite 13 to the number of cast "door open"
- puppetTransition(2, 2, 3, 1)
- sound stop 1
- set lName to the pathName & "SNDTRACK" & fSep & "ARRIVE.AIF"
- sound playFile 1, lName
- exit
- else
- go("HCraft", "06")
- end if
- end if
- end
-
- on RolloverNumbers
- global gLastRolledOn, gLastRolledCast
- repeat with i = 20 to 30
- if rollOver(i) = 1 then
- if gLastRolledOn = i then
- exit
- end if
- if gLastRolledOn <> 0 then
- set the castNum of sprite gLastRolledOn to the number of cast ("Button" & string(gLastRolledOn - 19))
- end if
- set the castNum of sprite i to the number of cast ("Button" & string(i - 19) && "HL")
- updateStage()
- set gLastRolledOn to i
- exit
- end if
- end repeat
- if gLastRolledOn = 0 then
- exit
- end if
- set the castNum of sprite gLastRolledOn to the number of cast ("Button" & string(gLastRolledOn - 19))
- updateStage()
- set gLastRolledOn to 0
- end
-
- on setUpRollOverNumbers
- ClearPuppets()
- repeat with i = 20 to 30
- puppetSprite(i, 1)
- set the stretch of sprite i to 0
- end repeat
- end
-